(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <string.h>
void * memset()
SYNOPSIS
void * dest
int c
size_t count

FUNCTION
Fill the memory at dest with count times c.

INPUTS
dest
The first byte of the destination area in memory
c
The byte to fill memory with
count
How many bytes to write
RESULT
dest.

NOTES
EXAMPLE
BUGS
SEE ALSO
memmove(), memcpy()
INTERNALS
HISTORY
01.01.1997 ldp
Changed clib to proto
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
25.11.1996 aros
New function memset()